how to set 2 decimal places in java

99

how to set 2 decimal places in java -

DecimalFormat df = new DecimalFormat();
df.setMaximumFractionDigits(2);
System.out.println(df.format(decimalNumber));

Comments

Submit
0 Comments